بیگل بن گرین Beaglebone Green TI Cortex-A8 AM335x
بیگل بن گرین Beaglebone Green TI Cortex-A8 AM335x

بیگل بن گرین Beaglebone Green TI Cortex-A8 AM335x

0 نظر سفارش (0)
کد محصول: بیگل بن گرین Beaglebone Green TI Cortex-A8 AM335x
موجودی 2 تا 3 روز دیگر
تعداد بازدید 1319 بازدید

توضیحات محصول

Features 
  • Compatible with BeagleBone Black
  • Software Compatibility
    • Debian
    • Android
    • Ubuntu
    • Cloud9 IDE on Node
    • and much more
    •  

Specification

ParameterValue
ProcessorAM335x 1GHz ARM® Cortex-A8
RAM512MB DDR3
on-board Flash Storage4GB eMMC
CPU SupportsNEON floating-point & 3D graphics accelerator
Micro USBSupports powering & communications
USB Host1
Grove Connectors2 (One I2C and One UART)
GPIO2 x 46 pin headers
Ethernet1
Operating Temperature0 ~ 75 °C

 

 

 

 

 

 

Difference with BBB

BBG has few hardware differences when compared to BBB. Understanding this would enable usage of any Cape designed for BBB.

  • There are two Grove connectors. One supports I2C and the other supports UART (i.e This is UART2).
  • HDMI output is only supported through BeagleBone Green HDMI Cape. There is no HDMI output in BBG.
  • BBG can be powered only by micro USB connector as there is no 5V DC Jack socket in BBG. Hence, VDD_5V which is powered by DC Jack socket in BBB is not available in BBG. SYS_5V is available. There is provision in BBG to short VDD_5V and SYS_5V by using a 0 Ohm resistor. Refer schematic for the same.
  •  

Hardware Overview

Seeed.cc's BeagleBoneGreen page documents all of the known hardware issues,

as well as the latest available software, hardware documentation and design materials.

Always read the System Reference Manual!!!

Design materials

Design materials for creating your own customized version of the hardware,

or for better understanding the design are also linked from the traditional home of "http://beagleboard.org/hardware/design"

BeagleBone Green hardware details

 

Hardware bbg lvc.jpg


POWER button can be used to enter and exit hibernate modes once that feature is implemented in the software.

Note that DO take care as you handle USB micro type-B socket, or you might break the socket off.

Headers

The expansion headers provide extensive I/O capabilities.

Cape Expansion Headers

Each digital I/O pin has 8 different modes that can be selected, including GPIO.

 

Bbg header 1.jpg

65 Possible Digital I/Os

In GPIO mode, each digital I/O can produce interrupts.

 

Bbg header 2.jpg

PWMs and Timers

Up to 8 digital I/O pins can be configured with pulse-width modulators (PWM) to produce

signals to control motors or create pseudo analog voltage levels, without taking up any extra CPU cycles.

 

Bbg header 3.jpg

 

Analog Inputs

Make sure you don't input more than 1.8V to the analog input pins. This is a single 12-bit

analog-to-digital converter with 8 channels, 7 of which are made available on the headers.

 

Bbg header 4.jpg

 

UART

There is a dedicated header for getting to the UART0 pins and connecting a debug cable.

Five additional serial ports are brought to the expansion headers,

but one of them only has a single direction brought to the headers.

 

Bbg header 5.jpg

 

I2C

The first I2C bus is utilized for reading EEPROMS on cape add-on boards and can't be used for

other digital I/O operations without interfering with that function, but you can still use it

to add other I2C devices at available addresses.

The second I2C bus is available for you to configure and use.

 

Bbg header 6.jpg

SPI

For shifting out data fast, you might consider using one of the SPI ports.

 

Bbg header 7.jpg

Software

Software Support

Android? Ubuntu? Gentoo? Whatever your software preference, get started on development with your Beagle and the software resources by click http://beagleboard.org/Support/Software+Support.

Getting Started

Beaglebone Green is a tiny computer with all the capability of today's desktop machines, without the bulk, expense, or noise.

Read the step-by-step getting started tutorial by click http://beagleboard.org/getting-started to begin developing with your BeagleBone in minutes.

Cloud9 IDE

To begin editing programs that live on your board, you can use the Cloud9 IDE by click http://192.168.7.2:3000/ .
As a simple exercise to become familiar with Cloud9 IDE, creating a simple application to blink one of the 4 user programmable LEDs on the BeagleBone is a good start.

Step1: Close any open file tabs.

Step2: Click the "+" in the top-right to create a new file.

 

C9-create-tab.png

 

C9 newfile.jpg

Step3: Copy and paste the following code into the new tab

import Adafruit_BBIO.GPIO as GPIO
import time
GPIO.setup("P9_14", GPIO.OUT)while True:
GPIO.output("P9_14", GPIO.HIGH)time.sleep(0.5)
GPIO.output("P9_14", GPIO.LOW)time.sleep(0.5)

 

Step4: Save the file by clicking the disk icon and giving the file a name with the .py extension.

Step5: Run the code

Select the arrow to the right of "run" (or "debug") in the toolbar to pull down the list of files to run and select your new file.

Step6: Observe the BeagleBone P9_14 led blinking steadily about once a second.

Step7: Stop the code by clicking "stop" in the toolbar.

Update image

There are multiple ways to run initial software on your board, but it is likley that the simplest way to get an update is to create an exact replica of a bootable microSD card and boot off of it.

The BeagleBone Green that can be initialized by a program booted off of a microSD card. If you want to update to the latest software image for your board, this is a way to do that.

Step1: Download the latest microSD card image

Download the image from http://beagleboard.org/latest-images We strongly recommend that you download the latest firmware.

The file you download will have an .img.xz extention. This is a compressed sector-by-sector image of the SD card.


Step2: Install compression utility

Download and install 7-zip by click http://www.7-zip.org/download.html .

 

7zip.jpg


Step3: Decompress the image

Use 7-zip to decompress the SD card .img file


Step4: Install SD card programming utility

Download and install Image Writer for Windows by clickhttp://sourceforge.net/projects/win32diskimager/files/latest/download . Be sure to download the binary distribution.


Step5: Connect SD card to your computer

Use the provided microSD card to SD adapter or a USB adapter to connect the SD card to your computer.


Step6: Write the image to your SD card

Use either the Ubuntu Image Writer or instructions on its page to write the decompressed image to your SD card.

 

BBGDiskImage.jpg


Step7: Eject the SD card

Eject the newly programmed SD card.


Step8: Boot your board off of the SD card

Insert SD card into your (powered-down) board, hold down the USER/BOOT button (if using Black) and apply power, either by the USB cable or 5V adapter.

If using an original white BeagleBone, you are done.

If using BeagleBone Green and the image is meant to program your on-board eMMC, you'll need to wait while the programming occurs.

When the flashing is complete, all 4 USRx LEDs will be lit solid.

Note: This can take up to 45 minutes. Power-down your board, remove the SD card and apply power again to be complete.

 

Resources

  

Related Projects

If you want to make some awesome projects with Beaglebone Green, here's some projects for reference.

Make a Case

 

Bbg case.jpg

If you need a acrylic case to protect your Beaglebone Green.

There's a tutorial to help you to make one. 

A Smart home monitoring equipment by BBG

 

 

Bbg demo1.jpg


Sometimes we want to know how is our the home environment. And this's a demo by BBG,we can easily monitor the room temperature, pressure, altitude info.

Of course you can also use any other Grove senors to make your own device.  

Intelligent alarm system made with BBG (IoT)

 

 

Bbg demo2.jpg


This is an IoT demo which we can upload the temperature info. to the network, and we can view the information in real time.

When the temperature exceeds the threshold, and lasts for 1 minute, a warning Email will be sent to you.

نظر بدهید

توجه: HTML ترجمه نمی شود!
    بد           خوب
Size Chart